b0b9e5677ea51430946eddfdcc0f2d6b3f4d7995,core/src/main/java/org/springframework/ws/server/endpoint/mapping/UriEndpointMapping.java,UriEndpointMapping,getLookupKeyForMessage,#MessageContext#,64
Before Change
if (transportContext != null) {
WebServiceConnection connection = transportContext.getConnection();
if (connection != null) {
return connection.getUri().toString();
}
}
return null;
After Change
if (transportContext != null) {
WebServiceConnection connection = transportContext.getConnection();
if (connection != null) {
URI connectionUri = connection.getUri();
if (usePath) {
return connectionUri.getPath();
}
else {
return connectionUri.toString();
}
}
}